5d2edc53b4ac80cba58ba91ec9de35834e37e276,idea/src/org/jetbrains/jet/plugin/highlighter/DeprecatedAnnotationVisitor.java,DeprecatedAnnotationVisitor,checkPropertyDescriptor,#JetExpression#PropertyDescriptor#,130
Before Change
@NotNull PropertyDescriptor propertyDescriptor
) {
// Deprecated for Property
if (KotlinBuiltIns.getInstance().isDeprecated(propertyDescriptor)) {
reportAnnotation(expression, propertyDescriptor, propertyDescriptor.isVar());
return;
}
After Change
@NotNull PropertyDescriptor propertyDescriptor
) {
// Deprecated for Property
if (reportAnnotationIfNeeded(expression, propertyDescriptor, propertyDescriptor.isVar())) {
return;
}